• Using SQLAlchemy to work with Databases vs SQL Server Management Studio

    Updated: 2024-03-29 05:00:00
    In this article, we look at using SQLAlchemy to work with databases and database objects versus using SQL Server Management Studio (SSMS) or other native SQL tools.

  • SQL Logic

    Updated: 2024-03-29 00:09:18
    In this article, I will discuss the history and thinking behind several types of logic that are typically associated with writing relational database code. Because of how relational databases implement NULLs, it definitely can make some processes more complex than expected by may programmers (inexperienced and experienced alike!) Three Valued Logic Missing or UNKNOWN values … The post SQL Logic appeared first on Simple Talk.

  • Drop Index, Recreate and Script out Indexes in SQL Server

    Updated: 2024-03-28 05:00:00
    In this article, learn how to drop or disable a SQL Server index that is no longer needed. Also, learn how to recreate and script out indexes.

  • Creating a Single JSON File for Configuration using Notebooks

    Updated: 2024-03-27 17:00:32
    On the blog Fabric Notebook and Deployment Pipelines I explained a technique to keep notebooks configuration values in JSON files on lakehouses, a good solution from many different points of views. What if we need to provide maintenance to the JSON configuration file using notebooks? The first problem is the fact the typical statement to … The post Creating a Single JSON File for Configuration using Notebooks appeared first on Simple Talk.

  • Automate Delta Tables Maintenance in a Microsoft Fabric Warehouse

    Updated: 2024-03-27 05:00:00
    Like regular tables in SQL Server, delta tables in a Microsoft Fabric warehouse also need maintenance which we cover how to automate in this article.

  • Generate PDF file using Azure Functions, Python Runtime and xhtml2pdf Package

    Updated: 2024-03-26 05:00:00
    Learn how to generate a PDF file using Azure functions, Python runtime, and the xhtml2pdf package.

  • Pagination and ordering by large values

    Updated: 2024-03-25 10:08:29
    Pagination is a technique for limiting output. Think of Google search results, shopping the electronics category on Amazon, or browsing tagged questions on Stack Overflow. Nobody could consume all of the results in a single shot, and no site wants to spend the resources required to present them all to us, so we are offered … The post Pagination and ordering by large values appeared first on Simple Talk.

  • List All Azure SQL Databases and Properties with PowerShell Script

    Updated: 2024-03-25 05:00:00
    This article includes a PowerShell script that you can run to get a list of your Azure SQL Databases and data such as Server Name, Subscription, Resource Group, Location, Administrator Login, Entra Admin, and CreateDate.

  • DBI Web Performance Suite for DB2 LUW and SQL Server

    Updated: 2024-03-25 05:00:00
    The DBI Web Performance Suite for SQL Server and DB2 is a database performance collection, analysis and recommendation tool to help you troubleshoot and tune your database systems.

  • Exploring AI Tools for Writing SQL Queries - Are they reliable?

    Updated: 2024-03-22 05:00:00
    In this article, we look at how AI tools can generate SQL queries and whether you can rely on the SQL code that is generated.

  • Parameter Substitution in SQLQueryStress for SQL Server Performance Tuning

    Updated: 2024-03-21 05:00:00
    Learn how to pass parameters to the SQLQueryStress tool to help with SQL Server performance tuning.

  • Model Optimization: Available In MDX Property

    Updated: 2024-03-20 17:00:05
    Power BI Semantic Models have a property called Available In MDX. Each field in the model has this property and we can only see or change its value through XMLA. For example, we can use Tabular Editor for this. We can disable this property in the fields where it will not be needed (and in … The post Model Optimization: Available In MDX Property appeared first on Simple Talk.

  • Calculate Modes in T-SQL with SQL Server Data

    Updated: 2024-03-20 05:00:00
    This article looks at the topic of how to calculate modes in T-SQL when working with SQL Server data.

  • Learning Spark SQL Numeric Functions - Basic, Binary, Statistical

    Updated: 2024-03-19 05:00:00
    Learn how to use Spark SQL numeric functions that fall into these three categories: basic, binary, and statistical functions.

  • how to check the restore point in Oracle

    Updated: 2024-03-18 13:53:20
    In this post, we will discuss, what is restore point in an oracle, how to check restore point in oracle What is a Restore Point in Oracle? Guaranteed restore points Normal Restore Points how to check the restore point in Oracle You can check the restore point in the Oracle database using the below query … how to check the restore point in Oracle Read More » The post how to check the restore point in Oracle appeared first on Techgoeasy.

  • SQL Server DDL Trigger to Capture for Create, Alter and Drop Commands

    Updated: 2024-03-18 05:00:00
    This article will show how to create a SQL Server DDL trigger to capture any DDL commands issued like Create, Alter, Drop, and then send an email notification.

  • Department of Redundancy Department

    Updated: 2024-03-18 00:30:34
    Ever wonder all the reasons that we use databases instead of file systems? While we don’t think of it too much anymore, the first reason that databases came into existence was to remove redundancies. The first source of redundancy back in the dark ages, when I was just beginning the program, was a product called … The post Department of Redundancy Department appeared first on Simple Talk.

  • Snowflake Resource Monitors to Track Resource Usage

    Updated: 2024-03-15 05:00:00
    Learn about Snowflake resource monitors to track resource usage. This article covers how to set up, configure, and enable notifications.

  • Kubernetes For Complete Beginners

    Updated: 2024-03-14 14:08:36
    Container orchestration has become a cornerstone of modern application deployment. For beginners stepping into the world of modern application deployment and orchestration, understanding the essence and significance of Kubernetes is essential. A container is a compact and self-contained package comprising essential components like code, runtime, libraries, and system tools necessary for running an application. Container … The post Kubernetes For Complete Beginners appeared first on Simple Talk.

  • Dynamically Copy Data from an On-Premises SQL Server to Azure SQL Database

    Updated: 2024-03-14 05:00:00
    In this article, we will dynamically copy data from an on-premises SQL Server to Azure SQL Database using Azure Data Factory and Microsoft Integration Runtime.

  • 5 Secrets about Dataflows Gen 2

    Updated: 2024-03-13 09:30:52
    Dataflows Gen 2 are the new version of Power BI dataflows. There are so many changes in relation to the previous version they are considered a new feature. The main difference is the possibility to set a target for the result of each query in the dataflow. In this way, it can be used as … The post 5 Secrets about Dataflows Gen 2 appeared first on Simple Talk.

  • Fix SQL Server Replication Failure Caused by Duplicate Values

    Updated: 2024-03-13 05:00:00
    In this tip, we cover how to fix an SQL Server replication failure caused by duplicate values in a unique index of a replicated table.

  • Choosing Between SSIS vs ADF: What You Need to Know

    Updated: 2024-03-12 05:00:00
    In this article, we look at how you might go about choosing whether to use SSIS or ADF for your next ETL/ELT project.

  • Simplify Data Merging in Power BI with DAX NATURALINNERJOIN

    Updated: 2024-03-11 05:00:00
    The need to merge tables when developing Power BI solutions is a fundamental task. In Power BI, DAX offers a powerful function, NATURALINNERJOIN, to streamline this task, making the process of combining data using DAX easier.

  • Reading Data from Event Hubs into Eventstream and a Lakehouse Table - Part 2

    Updated: 2024-03-08 05:00:00
    Learn about Eventstream in Microsoft Fabric to ingest, transform, and route real-time data.

  • Exploring Statistics Calculations in the Power Query Editor of Power BI

    Updated: 2024-03-07 05:00:00
    This article looks at using different statistical calculations when working with Power BI reports and data.

  • Archive SQL Server Data using the SQL OUTPUT Clause

    Updated: 2024-03-06 05:00:00
    This tip explores a better, more direct, and more optimized method for moving or archiving data in SQL Server using the SQL OUTPUT clause.

  • SQL String Functions - TRIM, LTRIM, RTRIM, REPLACE, STUFF, CHARINDEX and TRANSLATE

    Updated: 2024-03-05 05:00:00
    In this article, we look at how to manipulate string data in SQL Server using various functions like TRIM, LTRIM, RTRIM, REPLACE, STUFF, CHARINDEX, and TRANSLATE.

Current Feed Items | Previous Months Items

Feb 2024 | Jan 2024 | Dec 2023 | Nov 2023 | Oct 2023 | Sep 2023